fromJson_lock static method

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

Implementation

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