fromJson static method

PushMessageContentChatSetTheme? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static PushMessageContentChatSetTheme? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return PushMessageContentChatSetTheme(
    name: (json['name'] as String?) ?? '',
  );
}