phase3: nullfix arg-bang handler (argument_type/invalid_assignment). 872 -> 621
This commit is contained in:
@@ -103,14 +103,14 @@ class MobileViewTicketState extends State<MobileViewTicket> {
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
S.of(context).ticket_number_token(ticket.id),
|
||||
S.of(context).ticket_number_token(ticket.id!),
|
||||
style: TextStyle(
|
||||
fontSize: 24.0,
|
||||
color: Colors.black
|
||||
),
|
||||
),
|
||||
Text(
|
||||
Utils.utcDatetimeStringToLocalDatetimeString(context, ticket.createdAt),
|
||||
Utils.utcDatetimeStringToLocalDatetimeString(context, ticket.createdAt!),
|
||||
style: TextStyle(
|
||||
fontSize: 14.0,
|
||||
color: Colors.black38,
|
||||
@@ -211,7 +211,7 @@ class MobileViewTicketState extends State<MobileViewTicket> {
|
||||
Text(
|
||||
Utils.utcDatetimeStringToLocalDatetimeString(
|
||||
context,
|
||||
followUp.createdAt
|
||||
followUp.createdAt!
|
||||
),
|
||||
style: TextStyle(
|
||||
fontSize: 14.0,
|
||||
@@ -242,7 +242,7 @@ class MobileViewTicketState extends State<MobileViewTicket> {
|
||||
Container(
|
||||
padding: EdgeInsets.only(top: 8.0, left: 8.0, right: 8.0, bottom: 20.0),
|
||||
child: showGalleryImages(
|
||||
mainContext, followUp.files,
|
||||
mainContext, followUp.files!,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user