ContextStatus.fromJSON constructor

ContextStatus.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

ContextStatus.fromJSON(Map<String, dynamic> json)
    : this._((json['code'] as num).toInt(), json['message'] as String, isValid: json['isValid'] as bool);