Context.fromJson constructor

Context.fromJson(
  1. dynamic json
)

Implementation

Context.fromJson(dynamic json) {
  limit = json['limit'];
  value = json['value'];
  label = json['label'];
  key = json['key'];
}