toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (accountDetails != null) 'accountDetails': accountDetails!,
  if (appIntegrity != null) 'appIntegrity': appIntegrity!,
  if (deviceIntegrity != null) 'deviceIntegrity': deviceIntegrity!,
  if (name != null) 'name': name!,
  if (tokenTtl != null) 'tokenTtl': tokenTtl!,
};