toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'id': id,
    'reachedSteps': reachedSteps,
    'descInfo': descInfo,
    'localeReachedSteps': localeReachedSteps,
    'localeAllSteps': localeAllSteps,
    'recentUpdateTime': recentUpdateTime,
    'displayName': displayName,
    'gamePlayer': gamePlayer?.toMap(),
    'visualizedThumbnailUri': visualizedThumbnailUri,
    'state': state,
    'allSteps': allSteps,
    'type': type,
    'reachedThumbnailUri': reachedThumbnailUri,
  };
}