ResponseTheme.fromJson constructor

ResponseTheme.fromJson(
  1. dynamic json
)

Implementation

ResponseTheme.fromJson(dynamic json) {
  _status = json['status'] != null ? Status.fromJson(json['status']) : null;
  _swTheme = json['data'] != null ? SWTheme.fromJson(json['data']) : null;
}