ReturnPolicyPolicy.fromJson constructor

ReturnPolicyPolicy.fromJson(
  1. Map json_
)

Implementation

ReturnPolicyPolicy.fromJson(core.Map json_)
  : this(
      lastReturnDate: json_['lastReturnDate'] as core.String?,
      numberOfDays: json_['numberOfDays'] as core.String?,
      type: json_['type'] as core.String?,
    );