fromMap static method

Impression fromMap(
  1. Map map
)

Implementation

static Impression fromMap(Map<dynamic, dynamic> map) {
  return Impression(
      map['key'] as String?,
      map['bucketingKey'] as String?,
      map['split'] as String?,
      map['treatment'] as String?,
      map['time'] as num?,
      map['appliedRule'] as String?,
      map['changeNumber'] as num?,
      Map<String, dynamic>.from(map['attributes'] as Map));
}