CreationInfo.fromJson constructor

CreationInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreationInfo.fromJson(Map<String, dynamic> json) {
  return CreationInfo(
    ownerGid: json['OwnerGid'] as int,
    ownerUid: json['OwnerUid'] as int,
    permissions: json['Permissions'] as String,
  );
}