ConsumerInfo.fromJson constructor

ConsumerInfo.fromJson(
  1. Map json_
)

Implementation

ConsumerInfo.fromJson(core.Map json_)
    : this(
        consumerNumber: json_['consumerNumber'] as core.String?,
        projectNumber: json_['projectNumber'] as core.String?,
        type: json_['type'] as core.String?,
      );