fromJson_l static method

bool? fromJson_l(
  1. Map<String, dynamic> json
)

Implementation

static bool? fromJson_l(Map<String, dynamic> json) {
  return (json[r'l'] == null) ? null : json[r'l'] as bool?;
}