NIMCacheQueryResult.fromMap constructor

NIMCacheQueryResult.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory NIMCacheQueryResult.fromMap(Map<String, dynamic> map) =>
    NIMCacheQueryResult(
      path: map['path'] as String?,
      fileLength: map['fileLength'] as int,
      creationDate: map['creationDate'] as int?,
    );