asObjectOrNull property
Get data wrapped in JsonObject or null if data is not present.
Implementation
JsonObject? get asObjectOrNull =>
data == null ? null : JsonObject(data: data!);
Get data wrapped in JsonObject or null if data is not present.
JsonObject? get asObjectOrNull =>
data == null ? null : JsonObject(data: data!);