fromJsonNullable static method

StorageEngineFailureParams? fromJsonNullable(
  1. Map<String, dynamic>? json
)

Implementation

static StorageEngineFailureParams? fromJsonNullable(Map<String,dynamic>? json) => json == null ? null : fromJson(json);