UserActionState.fromJson constructor

UserActionState.fromJson(
  1. String source
)

Creates a UserActionState from a JSON string.

source - The JSON string to create the instance from.

Implementation

factory UserActionState.fromJson(String source) =>
    UserActionState.fromMap(json.decode(source));