fromJson static method
Implementation
static StoneReprintPayload fromJson(Map json) {
return StoneReprintPayload(
atk: json['atk'],
typeCustomer: StoneTypeCustomer.values.firstWhere((e) => e.name == json['type_customer'], orElse: () => StoneTypeCustomer.MERCHANT),
showFeedbackScreen: json['show_feedback_screen'],
);
}