Card.fromJson constructor

Card.fromJson(
  1. Map json_
)

Implementation

Card.fromJson(core.Map json_)
  : this(
      content: json_.containsKey('content')
          ? json_['content'] as core.Map<core.String, core.dynamic>
          : null,
      type: json_['type'] as core.String?,
    );